home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / sftgrd / describ.txt < prev    next >
Text File  |  1994-10-19  |  2KB  |  47 lines

  1.  
  2.      AAVBSORT.DLL provides a group of simple to use subroutines to sort
  3.      Visual Basic arrays. Since the subroutines are written in C++, they
  4.      are much faster than the same sort done in Visual Basic. Included  are
  5.      two types of sort routines: SortAry which sorts the array elements
  6.      themselves and SortIdx which sorts arrays via an index. Array elements
  7.      can be: Integer, Long, Single, Double, Currency, String, or Fixed
  8.      String. In the registered version, arrays elements can be of User
  9.      defined types.
  10.  
  11.      To use a sort routine in AAVBSORT.DLL, first make sure the DLL can be
  12.      found on the DOS path or is in the Windows or System directory. All
  13.      the routines are as easy to use as the following example.
  14.  
  15.         'Make sure the file AAVBSORT.DLL is in your DOS Path
  16.         'Put the line below in the declaration section of a form
  17.         Declare Sub SortAryDouble Lib "AAVBSORT.DLL" ( a() As Double )
  18.  
  19.         ' Put the following in the startup for a form
  20.         Dim d(30) as Double
  21.         Dim i as Integer
  22.         For i=0 to 30
  23.              d(i)= rnd
  24.         Next i
  25.  
  26.         ' Sort the array it-self
  27.         SortAryDouble d()
  28.  
  29.         ' Display the results on the form
  30.         For i=0 to 30
  31.              me.print d(i)
  32.         Next i
  33.  
  34.  
  35.      AAVBSORT.DLL is distributed as Shareware. Try before you buy. If you
  36.      continue using it, you are expected to register. See AAVBSORT.HLP for
  37.      information on the benefits of registering. See ORDER.TXT for
  38.      information on how to register.
  39.  
  40.         AA-Software International
  41.         12 ter Domaine Du Bois Joli
  42.         06330 Roquefort-Les-Pins, France
  43.         Tel: (+33) 93.77.50.47
  44.         Fax: (+33) 93.77.19.78
  45.         Internet: cswilly@acm.org
  46.         CompuServe: 100343,2570
  47.         X400:     (C=US; A=CompuServe; P=csmail; D=ID:100343,2570)